<goto> : Go To

Jump to other point (defined by <label>) in the macro and continue macro execution from this point.

Syntax: 

<goto>("Label")

Label
Name of the point to jump to.  For example, <goto>("Section1") jumps to the point <label>("Section1") in the same macro.

Example: 

<#> This macro shows how to use 'goto' and 'label' commands
<#>
<cmds>
<varset>("vNumOfLoops=","Insert number of loops (less than 25)")
<if_num>("vNumOfLoops>=25")
   <msg>(100,100,"Too many loops spcified.","Message",1)
   <goto>("END")
<endif>
<begloop>(vNumOfLoops)
   <msg>(-100,-100,"_vLoopCounter","Loop",0)
   <wx>(200)
<endloop>

<label>("END")